home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / Strings.p < prev    next >
Text File  |  1996-05-01  |  1KB  |  58 lines

  1. {
  2.      File:        Strings.p
  3.  
  4.      Contains:    Pascal <-> C String Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT Strings;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __STRINGS__}
  28. {$SETC __STRINGS__ := 1}
  29.  
  30. {$I+}
  31. {$SETC StringsIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42. {$IFC OLDROUTINELOCATIONS }
  43. PROCEDURE C2PStrProc(aStr: UNIV Ptr);
  44. FUNCTION C2PStr(cString: UNIV Ptr): StringPtr;
  45. PROCEDURE P2CStrProc(aStr: StringPtr);
  46. FUNCTION P2CStr(pString: StringPtr): Ptr;
  47. {$ENDC}
  48. {$ALIGN RESET}
  49. {$POP}
  50.  
  51. {$SETC UsingIncludes := StringsIncludes}
  52.  
  53. {$ENDC} {__STRINGS__}
  54.  
  55. {$IFC NOT UsingIncludes}
  56.  END.
  57. {$ENDC}
  58.